home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…ry 5: (Reseller Edition) / Apple Reference & Presentations Library 5.0 (Reseller Edition).iso / 3-Presentations / Apple Demos / Training / Macintosh IIci Training / Macintosh IIci Tutorial / Macintosh IIci Tutorial / card_14744.txt < prev    next >
Text File  |  1990-03-19  |  9KB  |  416 lines

  1. -- card: 14744 from stack: in
  2. -- bmap block id: 90377
  3. -- flags: 0000
  4. -- background id: 2629
  5. -- name: exercise5
  6. ----- HyperTalk script -----
  7. on opencard
  8.   put "Card "&the number of me into field "Card number"
  9. end opencard
  10.  
  11. on closecard
  12.   put "" into card field "Ports"  -- hidden field
  13.   repeat with i=7 to 12
  14.     send "Lineup" to btn i
  15.   end repeat
  16. end closecard
  17.  
  18. on Checkall
  19.   repeat with i=1 to 6
  20.     if line i of card field "Ports" <> "yes" then exit checkall
  21.   end repeat
  22.   play "Big win"
  23.   repeat with i=1 to 15
  24.     set highlite of card button 7 to not highlite of card btn 7
  25.     set highlite of card button 8 to not highlite of card btn 8
  26.     set highlite of card button 9 to not highlite of card btn 9
  27.     set highlite of card button 10 to not highlite of card btn 10
  28.     set highlite of card button 11 to not highlite of card btn 11
  29.     set highlite of card button 12 to not highlite of card btn 12
  30.   end repeat
  31.   clearbuttons
  32.   put "Yes" into line 5 of card field "Exam" of card "TOC"
  33. end checkall
  34.  
  35.  
  36. -- part 17 (field)
  37. -- low flags: 81
  38. -- high flags: 0000
  39. -- rect: left=353 top=179 right=301 bottom=385
  40. -- title width / last selected line: 0
  41. -- icon id / first selected line: 0 / 0
  42. -- text alignment: 0
  43. -- font id: 156
  44. -- text size: 14
  45. -- style flags: 0
  46. -- line height: 18
  47. -- part name: ports
  48.  
  49.  
  50. -- part 12 (button)
  51. -- low flags: 00
  52. -- high flags: 0000
  53. -- rect: left=212 top=266 right=284 bottom=240
  54. -- title width / last selected line: 0
  55. -- icon id / first selected line: 0 / 0
  56. -- text alignment: 1
  57. -- font id: 0
  58. -- text size: 12
  59. -- style flags: 0
  60. -- line height: 16
  61. -- part name: Serial target
  62.  
  63.  
  64. -- part 13 (button)
  65. -- low flags: 00
  66. -- high flags: 0000
  67. -- rect: left=238 top=265 right=284 bottom=256
  68. -- title width / last selected line: 0
  69. -- icon id / first selected line: 0 / 0
  70. -- text alignment: 1
  71. -- font id: 0
  72. -- text size: 12
  73. -- style flags: 0
  74. -- line height: 16
  75. -- part name: sound target
  76.  
  77.  
  78. -- part 14 (button)
  79. -- low flags: 00
  80. -- high flags: 0000
  81. -- rect: left=254 top=265 right=284 bottom=289
  82. -- title width / last selected line: 0
  83. -- icon id / first selected line: 0 / 0
  84. -- text alignment: 1
  85. -- font id: 0
  86. -- text size: 12
  87. -- style flags: 0
  88. -- line height: 16
  89. -- part name: ADB target
  90.  
  91.  
  92. -- part 10 (button)
  93. -- low flags: 00
  94. -- high flags: 0000
  95. -- rect: left=149 top=266 right=284 bottom=181
  96. -- title width / last selected line: 0
  97. -- icon id / first selected line: 0 / 0
  98. -- text alignment: 1
  99. -- font id: 0
  100. -- text size: 12
  101. -- style flags: 0
  102. -- line height: 16
  103. -- part name: SCSI target
  104.  
  105.  
  106. -- part 11 (button)
  107. -- low flags: 00
  108. -- high flags: 0000
  109. -- rect: left=177 top=266 right=284 bottom=209
  110. -- title width / last selected line: 0
  111. -- icon id / first selected line: 0 / 0
  112. -- text alignment: 1
  113. -- font id: 0
  114. -- text size: 12
  115. -- style flags: 0
  116. -- line height: 16
  117. -- part name: video target
  118.  
  119.  
  120. -- part 9 (button)
  121. -- low flags: 00
  122. -- high flags: 0000
  123. -- rect: left=125 top=266 right=284 bottom=155
  124. -- title width / last selected line: 0
  125. -- icon id / first selected line: 0 / 0
  126. -- text alignment: 1
  127. -- font id: 0
  128. -- text size: 12
  129. -- style flags: 0
  130. -- line height: 16
  131. -- part name: Floppy target
  132.  
  133.  
  134. -- part 3 (button)
  135. -- low flags: 00
  136. -- high flags: 2000
  137. -- rect: left=350 top=234 right=252 bottom=378
  138. -- title width / last selected line: 0
  139. -- icon id / first selected line: 25625 / 25625
  140. -- text alignment: 1
  141. -- font id: 0
  142. -- text size: 12
  143. -- style flags: 0
  144. -- line height: 16
  145. -- part name: Floppy
  146. ----- HyperTalk script -----
  147. on mousestilldown
  148.   set loc of me to the mouseloc
  149. end mousestilldown
  150.  
  151. on mouseup
  152.   if the loc of me is within the rect of button "Floppy Target"
  153.   then
  154.   set the loc of me to 141,275
  155.   put "yes" into line 4 of card field "ports"
  156.   repeat with i = 1 to 50
  157.     set the highlite of me to not the highlite of me
  158.   end repeat
  159.   checkall
  160. else
  161.   set the loc of me to 364,243
  162. end if
  163. end mouseup
  164.  
  165. On lineup
  166.   set loc of me to 364,243
  167. end lineup
  168.  
  169.  
  170. -- part 4 (button)
  171. -- low flags: 00
  172. -- high flags: 0000
  173. -- rect: left=348 top=197 right=221 bottom=380
  174. -- title width / last selected line: 0
  175. -- icon id / first selected line: 23702 / 23702
  176. -- text alignment: 1
  177. -- font id: 0
  178. -- text size: 12
  179. -- style flags: 0
  180. -- line height: 16
  181. -- part name: SCSI
  182. ----- HyperTalk script -----
  183. on mousestilldown
  184.   set loc of me to the mouseloc
  185. end mousestilldown
  186.  
  187. on mouseup
  188.   if the loc of me is within the rect of button "SCSI Target"
  189.   then
  190.   set loc of me to 173,275
  191.   put "yes" into line 2 of card field "ports"
  192.   repeat with i = 1 to 50
  193.     set the highlite of me to not the highlite of me
  194.   end repeat
  195.   checkall
  196. else
  197.   set the loc of me to 364,209
  198. end if
  199. end mouseup
  200.  
  201. On lineup
  202.   set loc of me to 364,209
  203. end lineup
  204.  
  205.  
  206. -- part 5 (button)
  207. -- low flags: 00
  208. -- high flags: 2000
  209. -- rect: left=351 top=251 right=271 bottom=377
  210. -- title width / last selected line: 0
  211. -- icon id / first selected line: 5792 / 5792
  212. -- text alignment: 1
  213. -- font id: 0
  214. -- text size: 12
  215. -- style flags: 0
  216. -- line height: 16
  217. -- part name: Video
  218. ----- HyperTalk script -----
  219. on mousestilldown
  220.   set loc of me to the mouseloc
  221. end mousestilldown
  222.  
  223. on mouseup
  224.   if the loc of me is within the rect of button "Video Target"
  225.   then
  226.   set loc of me to 205,275
  227.   put "yes" into line 5 of card field "ports"
  228.   repeat with i = 1 to 50
  229.     set the highlite of me to not the highlite of me
  230.   end repeat
  231.   checkall
  232. else
  233.   set the loc of me to 364,261
  234. end if
  235. end mouseup
  236.  
  237. On lineup
  238.   set loc of me to 364,261
  239. end lineup
  240.  
  241.  
  242. -- part 6 (button)
  243. -- low flags: 00
  244. -- high flags: 2000
  245. -- rect: left=351 top=272 right=290 bottom=378
  246. -- title width / last selected line: 0
  247. -- icon id / first selected line: 12128 / 12128
  248. -- text alignment: 1
  249. -- font id: 0
  250. -- text size: 12
  251. -- style flags: 0
  252. -- line height: 16
  253. -- part name: Serial
  254. ----- HyperTalk script -----
  255. on mousestilldown
  256.   set loc of me to the mouseloc
  257. end mousestilldown
  258.  
  259. on mouseup
  260.   if the rect of me is within the rect of button "Serial Target"
  261.   then
  262.   set loc of me to 233,275
  263.   put "yes" into line 6 of card field "ports"
  264.   repeat with i = 1 to 50
  265.     set the highlite of me to not the highlite of me
  266.   end repeat
  267.   checkall
  268. else
  269.   set the loc of me to 364,281
  270. end if
  271. end mouseup
  272.  
  273. On lineup
  274.   set loc of me to 364,281
  275. end lineup
  276.  
  277.  
  278. -- part 7 (button)
  279. -- low flags: 00
  280. -- high flags: 2000
  281. -- rect: left=357 top=179 right=197 bottom=372
  282. -- title width / last selected line: 0
  283. -- icon id / first selected line: 3797 / 3797
  284. -- text alignment: 1
  285. -- font id: 0
  286. -- text size: 12
  287. -- style flags: 0
  288. -- line height: 16
  289. -- part name: Sound
  290. ----- HyperTalk script -----
  291. on mousestilldown
  292.   set loc of me to the mouseloc
  293. end mousestilldown
  294.  
  295. on mouseup
  296.   if the rect of me is within the rect of button "Sound Target"
  297.   then
  298.   set loc of me to 253,274
  299.   put "yes" into line 1 of card field "ports"
  300.   repeat with i = 1 to 50
  301.     set the highlite of me to not the highlite of me
  302.   end repeat
  303.   checkall
  304. else
  305.   set the loc of me to 364,188
  306. end if
  307. end mouseup
  308.  
  309. On lineup
  310.   set loc of me to 364,188
  311. end lineup
  312.  
  313.  
  314. -- part 8 (button)
  315. -- low flags: 00
  316. -- high flags: 2000
  317. -- rect: left=351 top=217 right=234 bottom=378
  318. -- title width / last selected line: 0
  319. -- icon id / first selected line: 25491 / 25491
  320. -- text alignment: 1
  321. -- font id: 0
  322. -- text size: 12
  323. -- style flags: 0
  324. -- line height: 16
  325. -- part name: ADB
  326. ----- HyperTalk script -----
  327. on mousestilldown
  328.   set loc of me to the mouseloc
  329. end mousestilldown
  330.  
  331. on mouseup
  332.   if the rect of me is within the rect of button "ADB Target"
  333.   then
  334.   set loc of me to 272,275
  335.   put "yes" into line 3 of card field "ports"
  336.   repeat with i = 1 to 50
  337.     set the highlite of me to not the highlite of me
  338.   end repeat
  339.   checkall
  340. else
  341.   set the loc of me to 364,225
  342. end if
  343. end mouseup
  344.  
  345. On lineup
  346.   set loc of me to 364,225
  347. end lineup
  348.  
  349.  
  350. -- part 15 (field)
  351. -- low flags: 01
  352. -- high flags: 0000
  353. -- rect: left=388 top=179 right=301 bottom=473
  354. -- title width / last selected line: 0
  355. -- icon id / first selected line: 0 / 0
  356. -- text alignment: 0
  357. -- font id: 156
  358. -- text size: 14
  359. -- style flags: 0
  360. -- line height: 18
  361. -- part name: 
  362.  
  363.  
  364. -- part 18 (field)
  365. -- low flags: 01
  366. -- high flags: 2000
  367. -- rect: left=289 top=122 right=165 bottom=487
  368. -- title width / last selected line: 0
  369. -- icon id / first selected line: 0 / 0
  370. -- text alignment: 0
  371. -- font id: 157
  372. -- text size: 14
  373. -- style flags: 0
  374. -- line height: 18
  375. -- part name: Comments
  376.  
  377.  
  378. -- part contents for background part 18
  379. ----- text -----
  380. Card 209
  381.  
  382. -- part contents for background part 12
  383. ----- text -----
  384. Apple Macintosh IIci
  385.  
  386. -- part contents for background part 4
  387. ----- text -----
  388. Evaluation Exercises
  389.  
  390. -- part contents for background part 20
  391. ----- text -----
  392. Below is a picture of the back panel of the Macintosh IIci and the ports that are on it.
  393.  
  394.  
  395.  
  396.  
  397. -- part contents for background part 14
  398. ----- text -----
  399. exercise5
  400.  
  401. -- part contents for background part 21
  402. ----- text -----
  403. Product knowledge ‚Äî Exercise 5
  404.  
  405. -- part contents for card part 15
  406. ----- text -----
  407. Sound port
  408. SCSI port
  409. ADB ports
  410. Floppy port
  411. Video port
  412. Serial ports
  413.  
  414. -- part contents for card part 18
  415. ----- text -----
  416.  Drag the ports to their proper places on the back panel.